// basin.txt - script for wash basin.
//
// Memory Cells - 
//

beginterrainscript;

variables;

short choice, i, e;
string msgstr;

body;

beginstate INIT_STATE;
break;

beginstate START_STATE;
break;

beginstate SEARCH_STATE;
	set_state_continue(10);
break;

beginstate STEP_INTO_SPOT_STATE;
	block_entry(1);
	set_state_continue(10);
break;

beginstate 10;
	reset_dialog();
	add_dialog_str(0, "The basin looks clean and it appears to be in working order.", 0);
	add_dialog_str(1, "Do you wish to use it?", 0);
	add_dialog_choice(0, "No");
	add_dialog_choice(1, "Yes");
	choice = run_dialog(0);
	if (choice == 2) {
		// using the basin
		message_dialog("You wash up.", "You feel fresh and clean now.");
	}
break;
